home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: All Fritz
/
All Fritz.zip
/
All Fritz
/
FILES
/
PROGIALS
/
PTUTOR2B.LZH
/
RECURSON.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1988-01-15
|
409b
|
18 lines
(* Chapter 5 - Program 7 *)
program Try_Recursion;
var Count : integer;
procedure Print_And_Decrement(Index : integer);
begin
Writeln('The value of the index is ',Index:3);
Index := Index - 1;
if Index > 0 then
Print_And_Decrement(Index);
end;
begin (* main program *)
Count := 7;
Print_And_Decrement(Count);
end. (* main program *)